home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / x2ftp / msdos / gamesrc / bg_src / comp.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-03-21  |  518 b   |  27 lines

  1. /*
  2.  *   This file should be the first include file in all c sources where
  3.  *   defines change from compiler to compiler
  4.  */
  5.  
  6.  
  7. /* Only one of the following defines should be 1 */
  8. #define MIX_C   0
  9. #define MS_C    0
  10. #define TURBO_C 1
  11.  
  12. #if MIX_C
  13. #include <graphics.h>
  14. #elif MS_C
  15. #include <graph.h>
  16. #elif TURBO_C
  17. #include <graphics.h>
  18. #endif
  19.  
  20. #if MIX_C
  21. #define SCREEN_DEF_MODE  DEFAULTMODE
  22. #elif MS_C
  23. #define SCREEN_DEF_MODE _DEFAULTMODE
  24. #elif TURBO_C
  25. #define SCREEN_DEF_MODE _DEFAULTMODE
  26. #endif
  27.